home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_17_play audio excerpt = .ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  592 b   |  18 lines

  1. on mouseEnter
  2.   if (the number of member the member of sprite 13 = the number of member "audio controls") and not soundBusy(1) then
  3.     set the cursor of sprite the currentSpriteNum to [the number of member "finger", the number of member "fingermask"]
  4.   end if
  5. end
  6.  
  7. on mouseDown
  8.   global gTrackToPlay
  9.   if (the number of member the member of sprite 13 = the number of member "audio controls") and not soundBusy(1) then
  10.     sound playFile 1, gTrackToPlay
  11.   end if
  12.   set the cursor of sprite the currentSpriteNum to 0
  13. end
  14.  
  15. on mouseLeave
  16.   set the cursor of sprite the currentSpriteNum to 0
  17. end
  18.